home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-08-17 | 1.1 KB | 46 lines | [TEXT/MPS ] |
- ;
- ; File: Windows.a
- ;
- ; Contains: Window Manager Interfaces.
- ;
- ; Version: Technology: System 7.5
- ; Release: Universal Interfaces 3.2
- ;
- ; Copyright: © 1984-1998 by Apple Computer, Inc., all rights reserved
- ;
- ; Bugs?: For bug reports, consult the following page on
- ; the World Wide Web:
- ;
- ; http://developer.apple.com/bugreporter/
- ;
- ;
- ;
- ; NOTE
- ;
- ; The file Windows.h has been renamed to "MacWindows.h" to prevent a collision
- ; with the Microsoft Windows(tm) header file "Windows.h". MacOS only developers may
- ; continue to use #include <Windows.h>. Developers doing cross-platform work where
- ; Windows.h also exists should change their sources to use #include <MacWindows.h>
- ;
-
- IF &TYPE('__WINDOWS__') = 'UNDEFINED' THEN
- __WINDOWS__ SET 1
-
- IF &TYPE('__CONDITIONALMACROS__') = 'UNDEFINED' THEN
- include 'ConditionalMacros.a'
- ENDIF
-
- IF TARGET_OS_MAC THEN
- IF &TYPE('__MACWINDOWS__') = 'UNDEFINED' THEN
- include 'MacWindows.a'
- ENDIF
- ELSE
- ;
- ; If you get here, your development environment is messed up.
- ; This file is for MacOS development only.
- ;
-
- ENDIF ; TARGET_OS_MAC
- ENDIF ; __WINDOWS__
-
-